home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 11 / Cream of the Crop 11-1.iso / comm / yrn2_089.zip / ENGLISH.CMD < prev    next >
OS/2 REXX Batch file  |  1995-03-21  |  668b  |  24 lines

  1. @echo off
  2. if x%1 == x goto usage
  3. if not exist %1 mkdir %1
  4. copy *.bat %1 >nul
  5. copy *.exe %1 >nul
  6. copy english.mai %1\mail.hlp >nul
  7. copy english.new %1\news.hlp >nul
  8. copy *.doc %1 >nul
  9. copy global %1 >nul
  10. set YARN=%1
  11. echo Put this line to your CONFIG.SYS file:
  12. echo SET YARN=%1
  13. echo.
  14. echo Important: If you are upgrading Yarn from a version older than 0.80,
  15. echo            follow the instructions in the ENGLISH.UPG text file.
  16. goto end
  17. :usage
  18. echo usage: install [drive:]directory
  19. echo.
  20. echo Installs PC Yarn in the specified directory.
  21. echo Important: Choose a drive with a lot of free space.
  22. echo            The news will be stored there.
  23. :end
  24.